home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / ccmd / cmnum.cnf < prev    next >
Encoding:
Text File  |  1988-08-19  |  768 b   |  23 lines

  1. _ Author: Andrew Lowry
  2. _
  3. _ Columbia University Center for Computing Activities, July 1986.
  4. _ Copyright (C) 1986, 1987, Trustees of Columbia University in the
  5. _ City of New York.  Permission is granted to any individual or
  6. _ institution to use, copy, or redistribute this software so long as
  7. _ it is not sold for profit, provided this copyright notice is
  8. _ retained.
  9. _
  10.  
  11. /* number parsing errors */
  12.  
  13. fnerror(RAD,`Radix must be from 2 to 16')
  14. fnerror(SGN,`Number must be unsigned')
  15. fnerror(NP,`Not a valid number in specified radix')
  16. fnerror(OV,`Number too large for this machine')
  17.  
  18. /* Parse flags for number parse */
  19.  
  20. fnflag(US)        /* unsigned integer parse */
  21. fnflag(BNP)        /* integer can break on non-punctuation */
  22. fnflag(PO)        /* parse-only (no conversion to binary) */
  23.